import FilesExplorer from "@/components/explorer/levels/FilesExplorer"; /** * /:branch/:year/:month/:day * * Explorer leaf: lists files for the selected day. */ export default async function BranchYearMonthDayPage({ params }) { const { branch, year, month, day } = await params; return ; }